home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00016_Script_16 < prev    next >
Text File  |  1999-03-01  |  726b  |  26 lines

  1. on mouseDown
  2.   puppetsprite 8, FALSE
  3.   set the visible of sprite 8 to FALSE
  4.   
  5.   puppetSprite 95, FALSE -- the rewind button
  6.   set the loc of sprite(95) = point(1000, 1000)
  7.   set the blend of sprite 95 = 0
  8.   puppetSprite 96, FALSE -- the back to intro button
  9.   set the loc of sprite(96) = point(1000, 1000)
  10.   set the blend of sprite 96 = 0
  11.   puppetSprite 97, FALSE -- the fastforward button
  12.   set the loc of sprite(97) = point(1000, 1000)
  13.   set the blend of sprite 97 = 0
  14.   
  15.   
  16.   
  17.   cursor -1
  18.   if the volume of sound 2 >= 230 then
  19.     set the volume of sound 2 to 100
  20.   else if the volume of sound 2 <= 102 then
  21.     set the volume of sound 2 to 255
  22.   end if
  23.   
  24.   
  25.   go to frame "BackToScene4Loop"
  26. end